home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 05.zip / BS1 part 5 / UNICORN 1992.adf / Example.pprx < prev    next >
Text File  |  1992-08-22  |  348b  |  17 lines

  1. /* example ARexx script */
  2. options results
  3. address POWERPACKER
  4. ezrequest 'Testing PowerPacker ARexx EZRequest'
  5. if rc = 5 then
  6.     say "You pressed 'Ok'."
  7. else
  8.     say "You pressed 'Cancel'."
  9. getfilename
  10. say 'Name of file loaded:' result
  11. autorecrunch read
  12. if rc = 5 then
  13.     say 'Auto Recrunch is on.'
  14. else
  15.     say 'Auto Recrunch is off.'
  16. say 'End of example.'
  17.